| Fully Qualified Name: | Laminas\XmlRpc\AbstractValue | 
Represent a native XML-RPC value entity, used as parameters for the methods called by the Laminas\XmlRpc\Client object and as the return value for those calls.
This object as a very important static function Laminas\XmlRpc\Value::getXmlRpcValue, this function acts likes a factory for the Laminas\XmlRpc\Value objects
Using this function, users/Laminas\XmlRpc\Client object can create the Laminas\XmlRpc\Value objects from PHP variables, XML string or by specifying the exact XML-RPC native type
| Name | Description | Defined By | 
|---|---|---|
| generateXml() | Generate XML code that represent a native XML/RPC value | AbstractValue | 
| getGenerator() | Get XML generator instance | AbstractValue | 
| getType() | Get the native XML-RPC type (the type is one of the Value::XMLRPC_TYPE_* constants) | AbstractValue | 
| getValue() | Return the value of this object, convert the XML-RPC native value into a PHP variable | AbstractValue | 
| getXmlRpcTypeByValue() | Get XML-RPC type for a PHP native variable | AbstractValue | 
| getXmlRpcValue() | AbstractValue | |
| saveXml() | Return the XML code that represent a native MXL-RPC value | AbstractValue | 
| setEncoding() | Changes the encoding of the generator | AbstractValue | 
| setGenerator() | Sets XML generator instance | AbstractValue | 
Generate XML code that represent a native XML/RPC value
Returns: void
Get XML generator instance
Returns: \Laminas\XmlRpc\Generator\GeneratorInterface
Get the native XML-RPC type (the type is one of the Value::XMLRPC_TYPE_* constants)
Returns: string
Return the value of this object, convert the XML-RPC native value into a PHP variable
Returns: mixed
Get XML-RPC type for a PHP native variable
| Parameter Name | Type | Description | 
|---|---|---|
| $value | mixed | 
Returns: string
| Parameter Name | Type | Description | 
|---|---|---|
| $value | ||
| $type | 
Returns: void
Return the XML code that represent a native MXL-RPC value
Returns: string
Changes the encoding of the generator
| Parameter Name | Type | Description | 
|---|---|---|
| $encoding | string | 
Returns: void
Sets XML generator instance
| Parameter Name | Type | Description | 
|---|---|---|
| $generator | null|\Generator\GeneratorInterface | 
Returns: void